home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2006 November
/
PCWorld_2006-11_cd.bin
/
domacnost a kancelar
/
opencontacts
/
ocusetup.exe
/
setup.exe
/
{code_GetDataFolder}
/
Templates
/
default.xsl
< prev
next >
Wrap
Extensible Markup Language
|
2006-10-03
|
2KB
|
87 lines
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" omit-xml-declaration="yes" encoding="UTF-8" />
<xsl:template match="/">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>
<xsl:for-each select="OpenContacts/Contacts/Contact">
<table border="0" width="100%" id="table2">
<tr>
<td width="80%">
<font face="Times New Roman" size="3">
<b>
<xsl:value-of select="@Name"/>
</b>
</font>
</td>
<td>
<xsl:value-of select="@Title"/>
</td>
</tr>
</table>
<div style="margin-left: 15px;">
<font size="2" color="#800000">
<xsl:value-of select="Notes"/>
</font>
</div>
<xsl:for-each select="Sections/Section">
<div style="margin-left: 15px;">
<b>
<font face="Times New Roman" size="2">
<xsl:value-of select="@Name"/>
</font>
</b>
</div>
<table border="0" width="100%" id="table1" cellspacing="0" cellpadding="0">
<xsl:for-each select="Fields/Field">
<tr>
<td width="15"></td>
<td width="80" bgcolor="#C3D9FF">
<font face="Times New Roman" size="2">
<xsl:value-of select="@Name"/>:
</font>
</td>
<td bgcolor="#E0ECFF">
<font size="3">
<xsl:value-of select="@Value"/>
</font>
</td>
</tr>
</xsl:for-each>
</table>
<div style="margin-left: 15px;">
<font size="2" color="#800000">
<xsl:value-of select="Notes"/>
</font>
</div>
</xsl:for-each>
<p> </p>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>